home *** CD-ROM | disk | FTP | other *** search
/ IBM InfoROM for OS/2 Beta 1995 January / IBM InfoROM for OS2 Beta 1-1995.ISO / testcert / mmedia / system / ap2 / scripts / wpm___i2.p2s < prev    next >
Encoding:
Text File  |  1994-05-11  |  692 b   |  29 lines

  1. ###############################################################
  2. # Description:  Playing full length of a wave file in a 
  3. #               specific format and check if it sounds proper.               
  4. ###############################################################
  5.  
  6. open ?AP2PATH?M8B44K.WAV alias wave1 wait
  7.  
  8. set wave1  bitspersample 8 wait
  9. status wave1  bitspersample wait
  10. =8
  11.  
  12. set wave1  samplespersec 44100 wait
  13. status wave1  samplespersec wait
  14. =44100
  15.  
  16. set wave1  channels 1 wait
  17. status wave1  channels wait
  18. =1
  19.  
  20. set wave1 format tag MULAW wait
  21. status wave1 format tag wait
  22. =MULAW
  23.  
  24. play wave1 wait
  25. @CHECK Was the sound without hissing, popping?
  26.  
  27. close wave1 wait
  28.  
  29.